* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}

body{
    background: #f0f2f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Fondo-Pagina-resultados-comp.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: -1;
}



main{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

form{
    background: white;
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.image-login{
    width: 200px;
    height: 100px;
    object-fit: cover;
    border-radius: 5%;
    margin: 0 auto;
    display: block;
}

.prety-text{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

input{
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.2s;
}

button{
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover{
    background: #357ab8;
}

@media(max-width: 480px){
    form{
        padding: 1.5rem;
        gap: 1rem;
    }
    .prety-text{
        font-size: 1.25rem;
    }
    .image-login{
        width: 170px;
        height: 80px;
    }

}